home *** CD-ROM | disk | FTP | other *** search
- var asciiF5 = 116;
- var bRet = true;
-
- if(document.all)
- { document.onkeydown = onKeyPress;
- }
- else if (document.layers || document.getElementById)
- { document.onkeypress = onKeyPress;
- }
-
- function onKeyPress(evt)
- { window.status = '';
-
- var oEvent = (window.event) ? window.event : evt;
- var nKeyCode = oEvent.keyCode ? oEvent.keyCode : oEvent.which ? oEvent.which : void 0;
- var bIsFunctionKey = false;
-
- if (oEvent.charCode == null || oEvent.charCode == 0)
- { bIsFunctionKey = (nKeyCode == asciiF5)
- }
-
- if(bIsFunctionKey)
- { bRet = false;
-
- try
- { oEvent.returnValue = false;
- oEvent.cancelBubble = true;
- oEvent.keyCode = 0;
- window.status = msg;
- }
- catch(ex){}
- }
-
- return bRet;
- }